
body {
    margin: 0;
}

.f {
	display:flex;
}

.f-r {
	display:flex;
	flex-direction:row;
}

.f-c {
	display:flex;
	flex-direction:column;
}

.f-w {
	flex-wrap:wrap;
}

.j-sb {
	justify-content:space-between;
}
.j-c {
	justify-content:center;
}

.a-c {
	align-items:center;
}

.r {
	width:100%;
	min-width:1500px;
}

.m {
	width:60%;
	min-width:1250px;
}

.of-x {
	overflow-x:auto;
}

.nowrap {
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
}
.navbar {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    height: 60px;
    background: #30a060;
    background-size: 100% 100%;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.navbar>.content {
    width: 60%;
    min-width: 1500px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.navbar>.content>.left {
    display: flex;
    height: 100%;
    align-items: center;
}

.navbar>.content>.left>.logo {
    height: 40px;
}

.navbar>.content>.left>.pages {
    height: 100%;
}

.navbar>.content>.left>.pages>ul {
    display: flex;
    padding: 0px;
    margin: 0px;
    color: white;
    list-style: none;
    height: 100%;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.navbar>.content>.left>.pages>ul>li {
    height: 100%;
    padding: 0px 10px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    position: relative;    
    flex-direction: column;
    justify-content: center;
}

.navbar>.content>.left>.pages>ul>li>a {
    color: white;
    text-decoration: none;
    font-size: 17px;
}


.navbar>.content>.left>.pages>ul>li::after {
    transition: 0.2s background;
    content: "";    
    position: absolute;
    left: 30%;
    right: 30%;
    bottom: 0px;
    height: 3px;
    background: transparent;
}

.navbar>.content>.left>.pages>ul>.current::after {
    background: white;
}

.navbar>.content>.left>.pages>ul>.current:hover::after {
    background: white;
}

.navbar>.content>.left>.pages>ul>li:hover::after {
    background: #a0a0a0;
}

.navbar>.content>.right {
    display: flex;
    height: 100%;
    align-items: center;
    margin-right: 50px;
}

.navbar>.content>.right>.search>.box {
    border: 1px solid #dadadab0;
    border-radius: 3px;
    padding: 1px;
    display: flex;
    align-items: center;
    background: #ffffff;
}

.navbar>.content>.right>.search>.box>input {
    border: none;
    outline: none;
    padding: 4px 9px;
    background: transparent;
    min-width: 200px;
    color: black;
}

.navbar>.content>.right>.search>.box>.btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-right: 5px;
    opacity: 0.8;
    background: transparent;
    border: none;
}

.navbar>.content>.right>.vip-button {
    user-select: none;
    margin-left: 40px;    
    padding: 2px 8px;
    border: 2px solid #f1c525d0;
    border-radius: 16px;
    transition: 0.5s border;
}

.navbar>.content>.right>.vip-button:hover {
    border: 2px solid #f1c525;
}

.navbar>.content>.right>.vip-button>a {
    color: #fff0c7d0;
    text-decoration: none;
    transition: 0.5s color;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.navbar>.content>.right>.vip-button>a:hover {
    color: #fff0c7;
}

.navbar>.content>.right>.button {
    user-select: none;
    margin-left: 30px;
}

.navbar>.content>.right>.button>a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.5s color;
    font-size: 17px;
}


.navbar>.content>.right>.button>a:hover {
    color: #a0a0a0;
}

.card {
    display: flex;
    flex-direction: column;
    margin: 6px;
    background: white;
    padding: 15px;
    border: 1px solid #F2F3F5;
}


.card>.card-title-0>.card-title-text {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 14px;
}

.card>.card-title-1>.card-title-text {
    font-size: 16px;
    font-weight: bold;
    margin-left: -16px;
    padding-left: 12px;
    border-left: #b62727 3px solid;
    margin-bottom: 14px;
}

.card>.card-title-2 {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
}

.card>.card-title-2>.card-title-text {
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
    width: fit-content;
    position: relative;
    
}

.card>.card-title-2>.card-title-text::after{
    content: "";
    position: absolute;
    background: #C60001;
    left: 30%;
    right: 30%;
    bottom: -1px;
    height: 3px;
    margin-top: 2px;
}

.card>.card-content {
    display: flex;
    flex-direction: row;
}

.product-tag {
    display: flex;
    border: 1px solid #F2F3F5;
    margin: 8px;
    font-size: 13px;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    position: relative;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.5s background;
}

.product-tag:hover {
    background: #fafafa;
}

.product-tag>.product-tag-image {
    position: relative;
    left: 0;
    top: 0;
    padding-top: 100%;
}

.product-tag>.product-tag-image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.product-tag>.product-tag-image svg {
    position: absolute;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
    width: 30px;
    height: 30px;
}

.product-tag>.product-tag-info {
    display: flex;
    flex-direction: column;
    padding: 12px;
    justify-content: space-between;
    height: 100%;
}


.product-tag>.product-tag-info>.product-tag-title {
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: black;
}

.product-tag>.product-tag-info>.product-tag-price {
    color: #C60001;
    margin-top: 8px;
}

#footer {
    display: flex;
    width: 100%;
    background: black;
    margin: 0px auto 0px auto;
    min-width: 1500px;
}

#footer>.container {
    display: flex;
    flex-direction: column;
    width: 60%;
    min-width: 1260px;
    color: white;
    text-align: center;
    padding: 16px 0px 16px;
    background: black;
    margin: 0 auto;
    justify-content: center;
}


#footer>.container>.footer-nav>ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 16px 0px;
    padding: 0;
    align-items: center;
}

#footer>.container>.footer-nav>ul>li {
    padding: 0;
    cursor: pointer;
    display: flex;
}

#footer>.container>.footer-nav>ul>li::before {
    content: '|';
    margin: 0 15px;
    color: #ffffffa0;
}

#footer>.container>.footer-nav>ul>li:first-child::before {
    content: '';
}

#footer>.container>.footer-nav>ul>li>a {    
    text-decoration: none;
    color: white;
}

#footer>.container>ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0px;
    padding: 0;
    flex-direction: column
}

#footer>.container>ul>li {
    margin: 6px 0px;
}

#footer>.container>ul>li>a {
    color: white;
}

.form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form>.item{
    margin-bottom: 16px;
    border: 1px solid #E5E6EB;
    padding: 16px;
    outline: none;
}

.form>.button{
    width: 100%;
    margin: 4px;
    cursor: pointer;
    background: #FAEAEA;
    font-size: 14px;
    color: #C60001;
    padding: 16px 0;
    border: 0;
    transition: background 0.5s;
}


.form>.button:hover{
    background: rgb(240, 230, 230);
}


.form>select>option{
    margin: 16px;
}

.types {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.types>.types-item {
    cursor: pointer;
    margin: 0px 16px;
    font-size: 14px;
    margin-bottom: 16px;
}

.types>.types-item.current {
    color: #FF4444;
}

.page {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.page .page-handle{
    cursor: pointer;
}

.page .page-item{
    cursor: pointer;    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 28px;
    border-radius: 2px;
    border: 1px solid #C9CDD4;
    margin: 0 4px;
    padding: 3px;
}

.page .page-item.current{
    color: #ffffff;
    background: #ff4444;
    border: 1px solid #ff4444;
}

.swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.swiper .swiper-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.swiper .swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    -moz-transform: translate3d(0px, 0, 0);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.swiper .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.swiper .swiper-slide {
    flex-shrink: 0;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    background: #e0e0e0;
    overflow: hidden;
}

.swiper .swiper-page {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper .swiper-pagination-bullet {
    cursor: pointer;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    display: block;
}

.swiper .swiper-pagination-bullet-active {
    background: #019966;
}

.swiper .swiper-pagination-clickable{
    display: flex;
    flex-direction: row;
}

.search-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 2px;
}

.search-card>div  {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.search-card .desc {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-card .desc .left {
    display: flex;
    align-items: center;
}

.search-card .desc .left .logo  {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border: 1px solid #eee;
    background: white;
    display: flex;    
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 8px;
    margin-right: 50px;
}

.search-card .desc .left .logo img {
    max-width: 100%;
    max-height: 100%;
}


.search-card .desc .left .text {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
}


.search-card .desc .left .text .title {
    width: 600px;
    font-size: 20px;
    color: #F32C2C;
    max-width: 550px;
    overflow: hidden; 
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 25px;
    font-weight: 700;
    margin-bottom: 10px;
    text-decoration: none;
}

.search-card .desc .left .text .desc {
    width: 600px;
    line-height: 22px;
    font-size: 14px;
    color: #555555;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.search-card .desc .link {
    width: 112px;
    height: 38px;
    line-height: 38px;
    font-size: 16px;
    text-align: center;
    background: #F32C2C;
    border-radius: 30px;
    color: #FFFFFF;
    letter-spacing: 2px;
    margin-right: 8px;
    text-decoration: none;
}

.search-card .items {
    display: flex;
    justify-content: space-between;
}

